home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / flilib.zip / FLISRC.ZIP / JCLOSE.C < prev    next >
C/C++ Source or Header  |  1989-11-16  |  159b  |  13 lines

  1. #include "jlib.h"
  2.  
  3. /* Close file */
  4. void dos_close (Jfile f)
  5. {
  6. union i86_regs reg;
  7.  
  8. reg.b.ah = 0x3e;
  9. reg.w.bx = f;
  10. i86_sysint(0x21,®, ®);
  11. }
  12.  
  13.